home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / mach / sun3.md / machInt.h < prev    next >
C/C++ Source or Header  |  1992-12-18  |  3KB  |  96 lines

  1. /*
  2.  * machInt.h --
  3.  *
  4.  *    This file defines things that are shared between the "mach" modules
  5.  *    but aren't used by the rest of Sprite.
  6.  *
  7.  * Copyright 1988 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/mach/sun3.md/machInt.h,v 9.4 91/07/26 17:03:17 shirriff Exp $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _MACHINT
  20. #define _MACHINT
  21.  
  22. #include "machMon.h"
  23. #include "machTypes.h"
  24. #include "proc.h"
  25.  
  26. /*
  27.  * The bounds of the code that copies arguments from the user stack to
  28.  * the kernel stack.
  29.  */
  30. extern void MachFetchArgs _ARGS_((void));
  31. extern void MachFetchArgsEnd _ARGS_((void));
  32. extern void MachFetchArgs2 _ARGS_((void));
  33. extern void MachFetchArgsEnd2 _ARGS_((void));
  34. extern void MachProbeStart _ARGS_((void));
  35. extern void MachProbeEnd _ARGS_((void));
  36.  
  37. extern int MachTrap _ARGS_((Mach_TrapStack trapStack));
  38. extern void MachRunUserProc _ARGS_((void));
  39.  
  40. /*
  41.  * The number of different exceptions.
  42.  */
  43. #define    MACH_NUM_EXCEPTIONS    64
  44.  
  45. /*
  46.  * Structure which contains the different functions called for exceptions.
  47.  */
  48.  
  49. typedef struct {
  50.     int    initSupStackPtr;    /* 00 - initial SSP on reset*/
  51.     int    (*initPC)();        /* 04 - initial PC on reset*/
  52.     int    (*busError)();        /* 08 - bus error */
  53.     int    (*addressError)();    /* 0c - address error */
  54.     int    (*illegalInst)();    /* 10 - illegal instruction */
  55.     int    (*zeroDiv)();        /* 14 - zero divide */
  56.     int    (*chk)();        /* 18 - CHK instruction */
  57.     int    (*trapv)();        /* 1c - TRAPV instruction */
  58.     int    (*privViol)();        /* 20 - privilege violation */
  59.     int    (*traceTrap)();        /* 24 - trace trap */
  60.     int    (*emu1010)();        /* 28 - line 1010 emulator */
  61.     int    (*emu1111)();        /* 2c - line 1111 emulator */
  62.     int    (*res30)();        /* 30 - reserved */
  63.     int    (*res34)();        /* 34 - reserved */
  64.     int    (*stackFmtError)();    /* 38 - RTE format error */
  65.     int    (*unInitIntr)();    /* 3c - unitialized interrupt */
  66.     int    (*res1[8])();        /* 40-5c - reserved */
  67.     int    (*spuriousInt)();    /* 60 - spurious interrupt */
  68.     int    (*autoVec[7])();    /* 64-7c - level 1-7 autovectors */
  69.     int    (*trap[16])();        /* 80-bc - trap instruction vectors */
  70.     int    (*res2[16])();        /* c0-fc - reserved */
  71. } MachVectorTable;
  72.  
  73. /*
  74.  * The actual table of vectors.
  75.  */
  76. extern    MachVectorTable        *machVectorTablePtr;
  77.  
  78. /*
  79.  * The prototype table which contains the vectors which are to be copied into
  80.  * the vector table.
  81.  */
  82. extern    MachVectorTable     machProtoVectorTable;
  83.  
  84. /*
  85.  * Copy of the boot parameter structure.
  86.  */
  87. extern     MachMonBootParam    machMonBootParam;
  88.  
  89. /*
  90.  * Internal functions.
  91.  */
  92. extern void MachUserReturn _ARGS_((register Proc_ControlBlock *procPtr));
  93.  
  94.  
  95. #endif /* _MACHINT */
  96.